Following instructions have been given for the assignment -
1. Create a web page presentation using R Markdown that features a plot created with Plotly.
2. Host your webpage on either RPubs, GitHub Pages, or NeoCities.
3. Your webpage must contain the date that you created the document, and it must contain a plot created with Plotly.
library(plotly)
p <- plot_ly(midwest, x = ~percollege, color = ~state, type = "box") p